/**********************************************************************
* $Id$		abstract.txt 			
*//**
* @file		abstract.txt 
* @brief	Example description file
* @version	1.0
* @date		
* @author	NXP
*
* Copyright(C) 2011, NXP Semiconductor
* All rights reserved.
*
***********************************************************************
* Software that is described herein is for illustrative purposes only
* which provides customers with programming information regarding the
* products. This software is supplied "AS IS" without any warranties.
* NXP Semiconductors assumes no responsibility or liability for the
* use of the software, conveys no license or title under any patent,
* copyright, or mask work right to the product. NXP Semiconductors
* reserves the right to make changes in the software without
* notification. NXP Semiconductors also make no representation or
* warranty that such application will be suitable for the specified
* use without further testing or modification.
**********************************************************************/
  
@Example description:
	Purpose:
		This example shows how to implement a Li-Ion battery charger using 
		an LPC111x Cortex-M0 microcontroller.
	
	Process:
		16-bit Timer 1 Match0 is used to generate the PWM signal
		ADC channel 7 is used to measure the battery voltage
		ADC channel 5 is used to measure the charging current
		An LED connected to PIO1_0 is used to indicate an error condition.
			It is on when an error condition occurs.
		An LED connected to PIO1_1 is used to indicate the charging state.
			The charging state can be determined by the blink rate:
			Four seconds when in the pre-charge state
			Two seconds when in the constant-current charge state
			One second when in the constant-voltage charge state
			One half second when in the time constant-voltage state
			Fully on when charging has completed successfully
			 
